 |
 |
 |
 |
 |
 |
An array is a
collection of variables of the same
|
|
type. Individual
array elements are identified by an
|
integer index.
In C the index begins at zero and is
|
|
always written
inside square brackets.
|
|
|
int results[20];
|
|
|
int results_2d[20][5];
|
|
|
int results_3d[20][5][3];
|
|